home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 February: Tool Chest / Dev.CD Feb 94.toast / Tool Chest / Development Platforms / MPW Related / MPW Interfaces / CIncludes / Strings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-17  |  471 b   |  31 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Strings.h
  3.  
  4.     Copyright:    © 1983-1993 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Version:    System 7.1 for ETO #11
  8.     Created:    Tuesday, March 30, 1993 18:00
  9.  
  10. */
  11.  
  12. #ifndef __STRINGS__
  13. #define __STRINGS__
  14.  
  15. #ifndef __TYPES__
  16. #include <Types.h>
  17. #endif
  18.  
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. StringPtr c2pstr(char *aStr);
  23. pascal StringPtr C2PStr(Ptr cString);
  24. char *p2cstr(StringPtr aStr);
  25. pascal Ptr P2CStr(StringPtr pString);
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30. #endif
  31.